ConsoleMessage

data class ConsoleMessage(source: String, level: String, text: String, url: String?, line: Int?, column: Int?)

Console message.

Constructors

ConsoleMessage
Link copied to clipboard
fun ConsoleMessage(source: String, level: String, text: String, url: String? = null, line: Int? = null, column: Int? = null)

Properties

column
Link copied to clipboard
val column: Int? = null
Column number in the resource that generated this message (1-based).
level
Link copied to clipboard
val level: String
Message severity.
line
Link copied to clipboard
val line: Int? = null
Line number in the resource that generated this message (1-based).
source
Link copied to clipboard
val source: String
Message source.
text
Link copied to clipboard
val text: String
Message text.
url
Link copied to clipboard
val url: String? = null
URL of the message origin.

Sources

jvm source
Link copied to clipboard